home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / am-identity-edit.js < prev    next >
Encoding:
JavaScript  |  2005-04-19  |  14.5 KB  |  366 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Mail Code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * David Bienvenu.
  19.  * Portions created by the Initial Developer are Copyright (C) 2004
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Scott MacGregor <mscott@mozilla.org>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  27.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. var gIdentity = null;  // the identity we are editing (may be null for a new identity)
  40. var gAccount = null;   // the account the identity is (or will be) associated with
  41.  
  42. const nsIFilePicker = Components.interfaces.nsIFilePicker;
  43.  
  44. function onLoadIdentityProperties()
  45. {
  46.   // extract the account
  47.   gIdentity = window.arguments[0].identity;
  48.   gAccount = window.arguments[0].account;
  49.  
  50.   initIdentityValues(gIdentity);
  51.   initCopiesAndFolder(gIdentity);
  52.   initCompositionAndAddressing(gIdentity);
  53.   loadSMTPServerList();
  54.  
  55.   // the multiple identities editor isn't an account wizard panel so we have to do this ourselves:
  56.   document.getElementById('identity.smtpServerKey').value = gIdentity ? gIdentity.smtpServerKey 
  57.                                                             : gAccount.defaultIdentity.smtpServerKey;
  58. }
  59.  
  60. // based on the values of gIdentity, initialize the identity fields we expose to the user
  61. function initIdentityValues(identity)
  62. {
  63.   if (identity)
  64.   {
  65.     document.getElementById('identity.fullName').value = identity.fullName;
  66.     document.getElementById('identity.email').value = identity.email;
  67.     document.getElementById('identity.replyTo').value = identity.replyTo;
  68.     document.getElementById('identity.organization').value = identity.organization;
  69.     document.getElementById('identity.attachSignature').checked = identity.attachSignature;
  70.  
  71.     if (identity.signature)
  72.       document.getElementById('identity.signature').value = identity.signature.path;
  73.  
  74.     document.getElementById('identity.attachVCard').checked = identity.attachVCard;
  75.     document.getElementById('identity.escapedVCard').value = identity.escapedVCard;
  76.   }
  77.  
  78.   setupSignatureItems();
  79. }
  80.  
  81. function initCopiesAndFolder(identity)
  82. {
  83.   // if we are editing an existing identity, use it...otherwise copy our values from the default identity
  84.   var copiesAndFoldersIdentity = identity ? identity : gAccount.defaultIdentity; 
  85.  
  86.   document.getElementById('identity.fccFolder').value = copiesAndFoldersIdentity.fccFolder;
  87.   document.getElementById('identity.draftFolder').value = copiesAndFoldersIdentity.draftFolder;
  88.   document.getElementById('identity.stationeryFolder').value = copiesAndFoldersIdentity.stationeryFolder;
  89.  
  90.   document.getElementById('identity.fccFolderPickerMode').value = copiesAndFoldersIdentity.fccFolderPickerMode ? copiesAndFoldersIdentity.fccFolderPickerMode : 0;  
  91.   document.getElementById('identity.draftsFolderPickerMode').value = copiesAndFoldersIdentity.draftsFolderPickerMode ? copiesAndFoldersIdentity.draftsFolderPickerMode : 0;
  92.   document.getElementById('identity.tmplFolderPickerMode').value = copiesAndFoldersIdentity.tmplFolderPickerMode ? copiesAndFoldersIdentity.tmplFolderPickerMode : 0;
  93.  
  94.   document.getElementById('identity.doBcc').checked = copiesAndFoldersIdentity.doBcc;
  95.   document.getElementById('identity.doBccList').value = copiesAndFoldersIdentity.doBccList;
  96.   document.getElementById('identity.doFcc').checked = copiesAndFoldersIdentity.doFcc;
  97.   document.getElementById('identity.showSaveMsgDlg').checked = copiesAndFoldersIdentity.showSaveMsgDlg;
  98.   onInitCopiesAndFolders(); // am-copies.js method
  99. }
  100.  
  101. function initCompositionAndAddressing(identity)
  102. {
  103.   createDirectoriesList(false);
  104.  
  105.   // if we are editing an existing identity, use it...otherwise copy our values from the default identity
  106.   var addressingIdentity = identity ? identity : gAccount.defaultIdentity;
  107.  
  108.   document.getElementById('identity.directoryServer').value = addressingIdentity.directoryServer;
  109.   document.getElementById('identity.overrideGlobalPref').value = addressingIdentity.overrideGlobalPref;
  110.   document.getElementById('identity.composeHtml').checked = addressingIdentity.composeHtml;
  111.   document.getElementById('identity.autoQuote').checked = addressingIdentity.autoQuote;
  112.   document.getElementById('identity.replyOnTop').value = addressingIdentity.replyOnTop;
  113.   document.getElementById('identity.sig_bottom').value = addressingIdentity.sigBottom;
  114.  
  115.   onInitCompositionAndAddressing(); // am-addressing.js method
  116. }
  117.  
  118. function onOk()
  119. {
  120.   if (!validEmailAddress())
  121.     return false;
  122.  
  123.   // if we are adding a new identity, create an identity, set the fields and add it to the
  124.   // account. 
  125.   if (!gIdentity)
  126.   {
  127.     // ask the account manager to create a new identity for us
  128.     var accountManager = Components.classes["@mozilla.org/messenger/account-manager;1"]
  129.         .getService(Components.interfaces.nsIMsgAccountManager);
  130.     gIdentity = accountManager.createIdentity();
  131.     
  132.     // copy in the default identity settings so we inherit lots of stuff like the defaul drafts folder, etc.
  133.     gIdentity.copy(gAccount.defaultIdentity);
  134.  
  135.     // assume the identity is valid by default?
  136.     gIdentity.valid = true;
  137.  
  138.     // add the identity to the account
  139.     gAccount.addIdentity(gIdentity);
  140.  
  141.     // now fall through to saveFields which will save our new values        
  142.   }
  143.  
  144.   // if we are modifying an existing identity, save the fields
  145.   saveIdentitySettings(gIdentity);
  146.   saveCopiesAndFolderSettings(gIdentity);
  147.   saveAddressingAndCompositionSettings(gIdentity);
  148.  
  149.   window.arguments[0].result = true;
  150.  
  151.   return true;
  152. }
  153.  
  154. // returns false and prompts the user if
  155. // the identity does not have an email address
  156. function validEmailAddress()
  157. {
  158.   var emailAddress = document.getElementById('identity.email').value;
  159.   
  160.   // quickly test for an @ sign to test for an email address. We don't have
  161.   // to be anymore precise than that.
  162.   if (emailAddress.lastIndexOf("@") < 0)
  163.   {
  164.     // alert user about an invalid email address
  165.  
  166.     var prefBundle = document.getElementById("bundle_prefs");
  167.  
  168.     var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  169.                         .getService(Components.interfaces.nsIPromptService);
  170.     promptService.alert(window, prefBundle.getString("identity-edit-req-title"), 
  171.                         prefBundle.getString("identity-edit-req"));
  172.     return false;
  173.   }
  174.  
  175.   return true;
  176. }
  177.  
  178. function saveIdentitySettings(identity)
  179. {
  180.   if (identity)
  181.   {
  182.     identity.fullName = document.getElementById('identity.fullName').value;
  183.     identity.email = document.getElementById('identity.email').value;
  184.     identity.replyTo = document.getElementById('identity.replyTo').value;
  185.     identity.organization = document.getElementById('identity.organization').value;
  186.     identity.attachSignature = document.getElementById('identity.attachSignature').checked;
  187.  
  188.     identity.attachVCard = document.getElementById('identity.attachVCard').checked;
  189.     identity.escapedVCard = document.getElementById('identity.escapedVCard').value;
  190.     identity.smtpServerKey = document.getElementById('identity.smtpServerKey').value;
  191.     
  192.     var attachSignaturePath = document.getElementById('identity.signature').value;
  193.     if (attachSignaturePath)
  194.     {
  195.       // convert signature path back into a nsIFile
  196.       var sfile = Components.classes["@mozilla.org/file/local;1"]
  197.                   .createInstance(Components.interfaces.nsILocalFile);
  198.       sfile.initWithPath(attachSignaturePath);
  199.       identity.signature = sfile;
  200.     }
  201.     else
  202.       identity.signature = null; // this is important so we don't accidentally inherit the default
  203.   }
  204. }
  205.  
  206. function saveCopiesAndFolderSettings(identity)
  207. {
  208.   onSaveCopiesAndFolders(); // am-copies.js routine
  209.  
  210.   identity.fccFolder =  document.getElementById('identity.fccFolder').value;
  211.   identity.draftFolder = document.getElementById('identity.draftFolder').value;
  212.   identity.stationeryFolder = document.getElementById('identity.stationeryFolder').value;
  213.   identity.fccFolderPickerMode = document.getElementById('identity.fccFolderPickerMode').value;
  214.   identity.draftsFolderPickerMode = document.getElementById('identity.draftsFolderPickerMode').value;
  215.   identity.tmplFolderPickerMode = document.getElementById('identity.tmplFolderPickerMode').value;
  216.   identity.doBcc = document.getElementById('identity.doBcc').checked;
  217.   identity.doBccList = document.getElementById('identity.doBccList').value;
  218.   identity.doFcc = document.getElementById('identity.doFcc').checked;
  219.   identity.showSaveMsgDlg = document.getElementById('identity.showSaveMsgDlg').checked;
  220. }
  221.  
  222. function saveAddressingAndCompositionSettings(identity)
  223. {
  224.   onSaveCompositionAndAddressing(); // am-addressing.js routine
  225.  
  226.   identity.directoryServer = document.getElementById('identity.directoryServer').value;
  227.   identity.overrideGlobalPref = document.getElementById('identity.overrideGlobalPref').value;
  228.   identity.composeHtml = document.getElementById('identity.composeHtml').checked;
  229.   identity.autoQuote = document.getElementById('identity.autoQuote').checked;
  230.   identity.replyOnTop = document.getElementById('identity.replyOnTop').value;
  231.   identity.sigBottom = document.getElementById('identity.sig_bottom').value;
  232. }
  233.  
  234. function selectFile()
  235. {
  236.   var fp = Components.classes["@mozilla.org/filepicker;1"]
  237.                      .createInstance(nsIFilePicker);
  238.  
  239.   var prefBundle = document.getElementById("bundle_prefs");
  240.   var title = prefBundle.getString("choosefile");
  241.   fp.init(window, title, nsIFilePicker.modeOpen);
  242.   fp.appendFilters(nsIFilePicker.filterAll);
  243.  
  244.   // Get current signature folder, if there is one.
  245.   // We can set that to be the initial folder so that users 
  246.   // can maintain their signatures better.
  247.   var sigFolder = GetSigFolder();
  248.   if (sigFolder)
  249.       fp.displayDirectory = sigFolder;
  250.  
  251.   var ret = fp.show();
  252.   if (ret == nsIFilePicker.returnOK) {
  253.       var folderField = document.getElementById("identity.signature");
  254.       folderField.value = fp.file.path;
  255.   }
  256. }
  257.  
  258. function GetSigFolder()
  259. {
  260.   var sigFolder = null;
  261.   try 
  262.   {
  263.     var account = parent.getCurrentAccount();
  264.     var identity = account.defaultIdentity;
  265.     var signatureFile = identity.signature;
  266.  
  267.     if (signatureFile) 
  268.     {
  269.       signatureFile = signatureFile.QueryInterface( Components.interfaces.nsILocalFile );
  270.       sigFolder = signatureFile.parent;
  271.  
  272.       if (!sigFolder.exists) 
  273.           sigFolder = null;
  274.     }
  275.   }
  276.   catch (ex) {
  277.       dump("failed to get signature folder..\n");
  278.   }
  279.   return sigFolder;
  280. }
  281.  
  282. // If a signature is need to be attached, the associated items which
  283. // displays the absolute path to the signature (in a textbox) and the way
  284. // to select a new signature file (a button) are enabled. Otherwise, they
  285. // are disabled. Check to see if the attachSignature is locked to block
  286. // broadcasting events.
  287. function setupSignatureItems()
  288.   var signature = document.getElementById("identity.signature");
  289.   var browse = document.getElementById("identity.sigbrowsebutton");
  290.   var attachSignature = document.getElementById("identity.attachSignature");
  291.   var checked = attachSignature.checked;
  292.  
  293.   if (checked && !getAccountValueIsLocked(signature))
  294.     signature.removeAttribute("disabled");
  295.   else
  296.     signature.setAttribute("disabled", "true");
  297.  
  298.   if (checked && !getAccountValueIsLocked(browse))
  299.     browse.removeAttribute("disabled");
  300.   else
  301.     browse.setAttribute("disabled", "true"); 
  302. }
  303.  
  304. function editVCardCallback(escapedVCardStr)
  305. {
  306.   var escapedVCard = document.getElementById("identity.escapedVCard");
  307.   escapedVCard.value = escapedVCardStr;
  308. }
  309.  
  310. function editVCard()
  311. {
  312.   var escapedVCard = document.getElementById("identity.escapedVCard");
  313.  
  314.   // read vCard hidden value from UI
  315.   window.openDialog("chrome://messenger/content/addressbook/abNewCardDialog.xul",
  316.                     "",
  317.                     "chrome,resizable=no,titlebar,modal",
  318.                     {escapedVCardStr:escapedVCard.value, okCallback:editVCardCallback,
  319.                      titleProperty:"editVCardTitle", hideABPicker:true});
  320. }
  321.  
  322. function getAccountForFolderPickerState()
  323.   return gAccount;
  324. }
  325.  
  326. // when the identity panel is loaded, the smpt-list is created
  327. // and the in prefs.js configured smtp is activated
  328. function loadSMTPServerList()
  329. {
  330.   var smtpService = Components.classes["@mozilla.org/messengercompose/smtp;1"].getService(Components.interfaces.nsISmtpService);
  331.   fillSmtpServers(document.getElementById('identity.smtpServerKey'), smtpService.smtpServers, smtpService.defaultServer);
  332. }
  333.  
  334. function fillSmtpServers(smtpServerList, servers, defaultServer)
  335. {
  336.   if (!smtpServerList || !servers) 
  337.     return;
  338.  
  339.   var smtpPopup = document.getElementById('smtpPopup');
  340.   while (smtpPopup.lastChild.nodeName != "menuseparator")
  341.     smtpPopup.removeChild(smtpPopup.lastChild);
  342.  
  343.   var serverCount = servers.Count();
  344.   for (var i = 0; i < serverCount; i++) 
  345.   {
  346.     var server = servers.QueryElementAt(i, Components.interfaces.nsISmtpServer);
  347.     //ToDoList: add code that allows for the redirector type to specify whether to show values or not
  348.     if (!server.redirectorType)
  349.     {
  350.       var serverName = "";
  351.       if (server.description)
  352.         serverName = server.description + ' - ';
  353.       else if (server.username)
  354.         serverName = server.username + ' - ';    
  355.       serverName += server.hostname;
  356.  
  357.       if (defaultServer.key == server.key)
  358.         serverName += " " + document.getElementById("bundle_messenger").getString("defaultServerTag");
  359.  
  360.       smtpServerList.appendItem(serverName, server.key);
  361.     }
  362.   }
  363. }
  364.